flutter listview inside a column

58

new Column(
  children: <Widget>[
    new Expanded(
      child: horizontalList,
    )
  ],
);
Column(
  children: <Widget>[
    Expanded( //        <-- Use Expanded 
      child: ListView(...),
    )
  ],
)
Column(
  children: <Widget>[
    Expanded( //        <-- Use Expanded 
      child: ListView(...),
    )
  ],
)

Comments

Submit
0 Comments